home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 037a / exec31.zip / MAKEPAS < prev    next >
Text File  |  1991-08-20  |  462b  |  21 lines

  1. # sample makefile for EXTEST - Turbo Pascal, Tasm, and Borland Make
  2. PC=tpc
  3. OPT=/$D+ /$F- /V
  4. ASM=tasm /Zi /MX /W /DPASCAL
  5.  
  6. extest.exe: extest.c checkpat.tpu exec.tpu
  7.    $(PC) extest $(OPT) /GP /M
  8.  
  9. spawnp.obj: spawn.asm
  10.    $(ASM) spawn,$*;
  11.  
  12. checkpap.obj: checkpat.asm
  13.    $(ASM) /DFARCALL checkpat,$*;
  14.  
  15. checkpat.tpu: checkpat.pas checkpat.h checkpap.obj
  16.    $(PC) checkpat $(OPT)
  17.  
  18. exec.tpu: exec.pas checkpat.tpu spawnp.obj
  19.    $(PC) exec $(OPT)
  20.  
  21.